type net/http.http2StreamError
29 uses
net/http (current package)
h2_bundle.go#L1400: type http2StreamError struct {
h2_bundle.go#L1411: func http2streamError(id uint32, code http2ErrCode) http2StreamError {
h2_bundle.go#L1412: return http2StreamError{StreamID: id, Code: code}
h2_bundle.go#L1415: func (e http2StreamError) Error() string {
h2_bundle.go#L2051: if _, ok := err.(http2StreamError); ok {
h2_bundle.go#L3209: return nil, http2StreamError{mh.StreamID, http2ErrCodeProtocol, invalid}
h2_bundle.go#L3216: return nil, http2StreamError{mh.StreamID, http2ErrCodeProtocol, err}
h2_bundle.go#L5040: if se, ok := wr.write.(http2StreamError); ok {
h2_bundle.go#L5312: _, isReset := wr.write.(http2StreamError)
h2_bundle.go#L5362: case http2StreamError, http2handlerPanicRST, http2writeWindowUpdate:
h2_bundle.go#L5450: case http2StreamError:
h2_bundle.go#L5570: func (sc *http2serverConn) resetStream(se http2StreamError) {
h2_bundle.go#L5613: case http2StreamError:
h2_bundle.go#L5800: if e, ok := err.(http2StreamError); ok {
h2_bundle.go#L6060: st.sc.writeFrameFromHandler(http2FrameWriteRequest{write: http2StreamError{
h2_bundle.go#L7434: case http2StreamError:
h2_bundle.go#L8166: if se, ok := err.(http2StreamError); ok {
h2_bundle.go#L9151: if se, ok := err.(http2StreamError); ok {
h2_bundle.go#L9940: if se, ok := err.(http2StreamError); ok {
h2_bundle.go#L10004: rl.endStreamError(cs, http2StreamError{
h2_bundle.go#L10033: rl.endStreamError(cs, http2StreamError{
h2_bundle.go#L10361: rl.endStreamError(cs, http2StreamError{
h2_bundle.go#L10369: rl.endStreamError(cs, http2StreamError{
h2_bundle.go#L10378: rl.endStreamError(cs, http2StreamError{
h2_bundle.go#L10625: rl.endStreamError(cs, http2StreamError{
h2_bundle.go#L11111: func (se http2StreamError) writeFrame(ctx http2writeContext) error {
h2_bundle.go#L11115: func (se http2StreamError) staysWithinBuffer(max int) bool { return http2frameHeaderLen+4 <= max }
h2_bundle.go#L11429: if se, ok := wr.write.(http2StreamError); ok {
h2_error.go#L13: func (e http2StreamError) As(target any) bool {